home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / btnclock / frmstopc.frm < prev    next >
Text File  |  1995-09-06  |  2KB  |  69 lines

  1. VERSION 2.00
  2. Begin Form frmStopClock 
  3.    Caption         =   "buttonClock"
  4.    ClientHeight    =   1590
  5.    ClientLeft      =   2970
  6.    ClientTop       =   3300
  7.    ClientWidth     =   4185
  8.    Height          =   1995
  9.    Left            =   2910
  10.    LinkTopic       =   "Form2"
  11.    ScaleHeight     =   1590
  12.    ScaleWidth      =   4185
  13.    Top             =   2955
  14.    Width           =   4305
  15.    Begin CommandButton btnNo 
  16.       Caption         =   "No"
  17.       FontBold        =   -1  'True
  18.       FontItalic      =   0   'False
  19.       FontName        =   "MS Sans Serif"
  20.       FontSize        =   8.25
  21.       FontStrikethru  =   0   'False
  22.       FontUnderline   =   0   'False
  23.       Height          =   432
  24.       Left            =   2760
  25.       TabIndex        =   2
  26.       Top             =   840
  27.       Width           =   912
  28.    End
  29.    Begin CommandButton btnYes 
  30.       Caption         =   "Yes"
  31.       Default         =   -1  'True
  32.       FontBold        =   -1  'True
  33.       FontItalic      =   0   'False
  34.       FontName        =   "MS Sans Serif"
  35.       FontSize        =   8.25
  36.       FontStrikethru  =   0   'False
  37.       FontUnderline   =   0   'False
  38.       Height          =   432
  39.       Left            =   2760
  40.       TabIndex        =   1
  41.       Top             =   240
  42.       Width           =   912
  43.    End
  44.    Begin Label Label1 
  45.       Caption         =   "Close the Clock?"
  46.       FontBold        =   -1  'True
  47.       FontItalic      =   0   'False
  48.       FontName        =   "MS Sans Serif"
  49.       FontSize        =   8.25
  50.       FontStrikethru  =   0   'False
  51.       FontUnderline   =   0   'False
  52.       Height          =   372
  53.       Left            =   360
  54.       TabIndex        =   0
  55.       Top             =   540
  56.       Width           =   1992
  57.    End
  58. End
  59. Option Explicit
  60.  
  61. Sub btnNo_Click ()
  62.    Hide
  63. End Sub
  64.  
  65. Sub btnYes_Click ()
  66.    End  'bye bye
  67. End Sub
  68.  
  69.